home *** CD-ROM | disk | FTP | other *** search
/ 207.233.110.77 / 207.233.110.77.tar / 207.233.110.77 / web24 / Tutorial 6 / Case 1 / pcg.css < prev    next >
Cascading Style Sheet File  |  2011-04-04  |  2KB  |  51 lines

  1. /*
  2.    New Perspectives on HTML and XHTML 5th Edition
  3.    Tutorial 6
  4.    Case Problem 1
  5.  
  6.    Park City Gazette Style Sheet
  7.   
  8.  
  9.    Filename:         pcg.css
  10.    Supporting Files: parch.jpg
  11.  
  12. */
  13.  
  14. body                   {margin: 0px; background-image: url(parch.jpg);
  15.                         font-family: Arial, Helvetica, sans-serif}
  16.  
  17. #header                {position: absolute; top: 20px; left: 80px}
  18.  
  19. #leftColumn            {position: absolute; top: 180px; left: 10px; 
  20.                         width: 100px; color: rgb(63,56,46)}
  21.  
  22. #leftColumn h2         {font-size: 14px; margin: 10px 0px 0px 2px;
  23.                         font-weight: normal}
  24.  
  25. #leftColumn ul         {list-style-type: none; margin: 0px; padding: 0px;
  26.                         margin-left: 22px; font-size: 12px}
  27.  
  28. #leftColumn ul li      {margin: 0px; padding: 0px; line-height: 1.4}
  29.  
  30. #leftColumn a          {text-decoration: none; color: black}
  31.  
  32. #leftColumn a:visited  {color: black}
  33. #leftColumn a:hover    {text-decoration: underline}
  34.  
  35. #rightColumn           {position: absolute; top: 180px; left: 125px; width: 600px;
  36.                         font-size: 14px}
  37.  
  38. #rightColumn h1        {font-size: 24px; margin: 0px; padding: 0px;
  39.                         text-align: center; font-weight: normal;
  40.                         letter-spacing: 5px}
  41.  
  42. #rightColumn p         {text-align: center}
  43.  
  44. #rightColumn address   {font-size: 10px; font-style: normal; text-align: center;
  45.                         border-top: 1px solid rgb(63,56,46); margin-bottom: 20px}
  46.  
  47.  
  48.  
  49.  
  50.  
  51.